home *** CD-ROM | disk | FTP | other *** search
/ The Very Best of Atari Inside / The Very Best of Atari Inside 1.iso / mint / mntinc25 / file.h < prev    next >
C/C++ Source or Header  |  1992-05-15  |  375b  |  21 lines

  1. #ifndef _FILE_H
  2. #define _FILE_H
  3.  
  4. #ifndef _COMPILER_H
  5. #include <compiler.h>
  6. #endif
  7.  
  8. #ifdef __MINT__
  9. /* lockf() comands */
  10. #define LOCK_SH    1    /* shared lock */
  11. #define LOCK_EX    2    /* exclusive lock */
  12. #define LOCK_NB    4    /* non-blocking */
  13. #define LOCK_UN    8    /* unlock */
  14.  
  15. __EXTERN int        flock    __PROTO((int, int));
  16. #endif
  17.  
  18. #include <fcntl.h>
  19.  
  20. #endif /* _FILE_H */
  21.